home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / imaplib.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  43KB  |  1,418 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''IMAP4 client.
  5.  
  6. Based on RFC 2060.
  7.  
  8. Public class:           IMAP4
  9. Public variable:        Debug
  10. Public functions:       Internaldate2tuple
  11.                         Int2AP
  12.                         ParseFlags
  13.                         Time2Internaldate
  14. '''
  15. __version__ = '2.55'
  16. import binascii
  17. import os
  18. import random
  19. import re
  20. import socket
  21. import sys
  22. import time
  23. __all__ = [
  24.     'IMAP4',
  25.     'IMAP4_SSL',
  26.     'IMAP4_stream',
  27.     'Internaldate2tuple',
  28.     'Int2AP',
  29.     'ParseFlags',
  30.     'Time2Internaldate']
  31. CRLF = '\r\n'
  32. Debug = 0
  33. IMAP4_PORT = 143
  34. IMAP4_SSL_PORT = 993
  35. AllowedVersions = ('IMAP4REV1', 'IMAP4')
  36. Commands = {
  37.     'APPEND': ('AUTH', 'SELECTED'),
  38.     'AUTHENTICATE': ('NONAUTH',),
  39.     'CAPABILITY': ('NONAUTH', 'AUTH', 'SELECTED', 'LOGOUT'),
  40.     'CHECK': ('SELECTED',),
  41.     'CLOSE': ('SELECTED',),
  42.     'COPY': ('SELECTED',),
  43.     'CREATE': ('AUTH', 'SELECTED'),
  44.     'DELETE': ('AUTH', 'SELECTED'),
  45.     'DELETEACL': ('AUTH', 'SELECTED'),
  46.     'EXAMINE': ('AUTH', 'SELECTED'),
  47.     'EXPUNGE': ('SELECTED',),
  48.     'FETCH': ('SELECTED',),
  49.     'GETACL': ('AUTH', 'SELECTED'),
  50.     'GETQUOTA': ('AUTH', 'SELECTED'),
  51.     'GETQUOTAROOT': ('AUTH', 'SELECTED'),
  52.     'MYRIGHTS': ('AUTH', 'SELECTED'),
  53.     'LIST': ('AUTH', 'SELECTED'),
  54.     'LOGIN': ('NONAUTH',),
  55.     'LOGOUT': ('NONAUTH', 'AUTH', 'SELECTED', 'LOGOUT'),
  56.     'LSUB': ('AUTH', 'SELECTED'),
  57.     'NAMESPACE': ('AUTH', 'SELECTED'),
  58.     'NOOP': ('NONAUTH', 'AUTH', 'SELECTED', 'LOGOUT'),
  59.     'PARTIAL': ('SELECTED',),
  60.     'PROXYAUTH': ('AUTH',),
  61.     'RENAME': ('AUTH', 'SELECTED'),
  62.     'SEARCH': ('SELECTED',),
  63.     'SELECT': ('AUTH', 'SELECTED'),
  64.     'SETACL': ('AUTH', 'SELECTED'),
  65.     'SETQUOTA': ('AUTH', 'SELECTED'),
  66.     'SORT': ('SELECTED',),
  67.     'STATUS': ('AUTH', 'SELECTED'),
  68.     'STORE': ('SELECTED',),
  69.     'SUBSCRIBE': ('AUTH', 'SELECTED'),
  70.     'THREAD': ('SELECTED',),
  71.     'UID': ('SELECTED',),
  72.     'UNSUBSCRIBE': ('AUTH', 'SELECTED') }
  73. Continuation = re.compile('\\+( (?P<data>.*))?')
  74. Flags = re.compile('.*FLAGS \\((?P<flags>[^\\)]*)\\)')
  75. InternalDate = re.compile('.*INTERNALDATE "(?P<day>[ 123][0-9])-(?P<mon>[A-Z][a-z][a-z])-(?P<year>[0-9][0-9][0-9][0-9]) (?P<hour>[0-9][0-9]):(?P<min>[0-9][0-9]):(?P<sec>[0-9][0-9]) (?P<zonen>[-+])(?P<zoneh>[0-9][0-9])(?P<zonem>[0-9][0-9])"')
  76. Literal = re.compile('.*{(?P<size>\\d+)}$')
  77. MapCRLF = re.compile('\\r\\n|\\r|\\n')
  78. Response_code = re.compile('\\[(?P<type>[A-Z-]+)( (?P<data>[^\\]]*))?\\]')
  79. Untagged_response = re.compile('\\* (?P<type>[A-Z-]+)( (?P<data>.*))?')
  80. Untagged_status = re.compile('\\* (?P<data>\\d+) (?P<type>[A-Z-]+)( (?P<data2>.*))?')
  81.  
  82. class IMAP4:
  83.     '''IMAP4 client class.
  84.  
  85.     Instantiate with: IMAP4([host[, port]])
  86.  
  87.             host - host\'s name (default: localhost);
  88.             port - port number (default: standard IMAP4 port).
  89.  
  90.     All IMAP4rev1 commands are supported by methods of the same
  91.     name (in lower-case).
  92.  
  93.     All arguments to commands are converted to strings, except for
  94.     AUTHENTICATE, and the last argument to APPEND which is passed as
  95.     an IMAP4 literal.  If necessary (the string contains any
  96.     non-printing characters or white-space and isn\'t enclosed with
  97.     either parentheses or double quotes) each string is quoted.
  98.     However, the \'password\' argument to the LOGIN command is always
  99.     quoted.  If you want to avoid having an argument string quoted
  100.     (eg: the \'flags\' argument to STORE) then enclose the string in
  101.     parentheses (eg: "(\\Deleted)").
  102.  
  103.     Each command returns a tuple: (type, [data, ...]) where \'type\'
  104.     is usually \'OK\' or \'NO\', and \'data\' is either the text from the
  105.     tagged response, or untagged results from command. Each \'data\'
  106.     is either a string, or a tuple. If a tuple, then the first part
  107.     is the header of the response, and the second part contains
  108.     the data (ie: \'literal\' value).
  109.  
  110.     Errors raise the exception class <instance>.error("<reason>").
  111.     IMAP4 server errors raise <instance>.abort("<reason>"),
  112.     which is a sub-class of \'error\'. Mailbox status changes
  113.     from READ-WRITE to READ-ONLY raise the exception class
  114.     <instance>.readonly("<reason>"), which is a sub-class of \'abort\'.
  115.  
  116.     "error" exceptions imply a program error.
  117.     "abort" exceptions imply the connection should be reset, and
  118.             the command re-tried.
  119.     "readonly" exceptions imply the command should be re-tried.
  120.  
  121.     Note: to use this module, you must read the RFCs pertaining
  122.     to the IMAP4 protocol, as the semantics of the arguments to
  123.     each IMAP4 command are left to the invoker, not to mention
  124.     the results.
  125.     '''
  126.     
  127.     class error(Exception):
  128.         pass
  129.  
  130.     
  131.     class abort(error):
  132.         pass
  133.  
  134.     
  135.     class readonly(abort):
  136.         pass
  137.  
  138.     mustquote = re.compile("[^\\w!#$%&'*+,.:;<=>?^`|~-]")
  139.     
  140.     def __init__(self, host = '', port = IMAP4_PORT):
  141.         self.debug = Debug
  142.         self.state = 'LOGOUT'
  143.         self.literal = None
  144.         self.tagged_commands = { }
  145.         self.untagged_responses = { }
  146.         self.continuation_response = ''
  147.         self.is_readonly = None
  148.         self.tagnum = 0
  149.         self.open(host, port)
  150.         self.tagpre = Int2AP(random.randint(0, 31999))
  151.         self.tagre = re.compile('(?P<tag>' + self.tagpre + '\\d+) (?P<type>[A-Z]+) (?P<data>.*)')
  152.         if __debug__:
  153.             self._cmd_log_len = 10
  154.             self._cmd_log_idx = 0
  155.             self._cmd_log = { }
  156.             if self.debug >= 1:
  157.                 self._mesg('imaplib version %s' % __version__)
  158.                 self._mesg('new IMAP4 connection, tag=%s' % self.tagpre)
  159.             
  160.         
  161.         self.welcome = self._get_response()
  162.         if 'PREAUTH' in self.untagged_responses:
  163.             self.state = 'AUTH'
  164.         elif 'OK' in self.untagged_responses:
  165.             self.state = 'NONAUTH'
  166.         else:
  167.             raise self.error(self.welcome)
  168.         cap = 'CAPABILITY'
  169.         self._simple_command(cap)
  170.         if cap not in self.untagged_responses:
  171.             raise self.error('no CAPABILITY response from server')
  172.         
  173.         self.capabilities = tuple(self.untagged_responses[cap][-1].upper().split())
  174.         if __debug__:
  175.             if self.debug >= 3:
  176.                 self._mesg('CAPABILITIES: %r' % (self.capabilities,))
  177.             
  178.         
  179.         for version in AllowedVersions:
  180.             if version not in self.capabilities:
  181.                 continue
  182.             
  183.             self.PROTOCOL_VERSION = version
  184.             return None
  185.         
  186.         raise self.error('server not IMAP4 compliant')
  187.  
  188.     
  189.     def __getattr__(self, attr):
  190.         if attr in Commands:
  191.             return getattr(self, attr.lower())
  192.         
  193.         raise AttributeError("Unknown IMAP4 command: '%s'" % attr)
  194.  
  195.     
  196.     def open(self, host = '', port = IMAP4_PORT):
  197.         '''Setup connection to remote server on "host:port"
  198.             (default: localhost:standard IMAP4 port).
  199.         This connection will be used by the routines:
  200.             read, readline, send, shutdown.
  201.         '''
  202.         self.host = host
  203.         self.port = port
  204.         self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  205.         self.sock.connect((host, port))
  206.         self.file = self.sock.makefile('rb')
  207.  
  208.     
  209.     def read(self, size):
  210.         """Read 'size' bytes from remote."""
  211.         return self.file.read(size)
  212.  
  213.     
  214.     def readline(self):
  215.         '''Read line from remote.'''
  216.         return self.file.readline()
  217.  
  218.     
  219.     def send(self, data):
  220.         '''Send data to remote.'''
  221.         self.sock.sendall(data)
  222.  
  223.     
  224.     def shutdown(self):
  225.         '''Close I/O established in "open".'''
  226.         self.file.close()
  227.         self.sock.close()
  228.  
  229.     
  230.     def socket(self):
  231.         '''Return socket instance used to connect to IMAP4 server.
  232.  
  233.         socket = <instance>.socket()
  234.         '''
  235.         return self.sock
  236.  
  237.     
  238.     def recent(self):
  239.         """Return most recent 'RECENT' responses if any exist,
  240.         else prompt server for an update using the 'NOOP' command.
  241.  
  242.         (typ, [data]) = <instance>.recent()
  243.  
  244.         'data' is None if no new messages,
  245.         else list of RECENT responses, most recent last.
  246.         """
  247.         name = 'RECENT'
  248.         (typ, dat) = self._untagged_response('OK', [
  249.             None], name)
  250.         if dat[-1]:
  251.             return (typ, dat)
  252.         
  253.         (typ, dat) = self.noop()
  254.         return self._untagged_response(typ, dat, name)
  255.  
  256.     
  257.     def response(self, code):
  258.         """Return data for response 'code' if received, or None.
  259.  
  260.         Old value for response 'code' is cleared.
  261.  
  262.         (code, [data]) = <instance>.response(code)
  263.         """
  264.         return self._untagged_response(code, [
  265.             None], code.upper())
  266.  
  267.     
  268.     def append(self, mailbox, flags, date_time, message):
  269.         """Append message to named mailbox.
  270.  
  271.         (typ, [data]) = <instance>.append(mailbox, flags, date_time, message)
  272.  
  273.                 All args except `message' can be None.
  274.         """
  275.         name = 'APPEND'
  276.         if not mailbox:
  277.             mailbox = 'INBOX'
  278.         
  279.         if flags:
  280.             if (flags[0], flags[-1]) != ('(', ')'):
  281.                 flags = '(%s)' % flags
  282.             
  283.         else:
  284.             flags = None
  285.         if date_time:
  286.             date_time = Time2Internaldate(date_time)
  287.         else:
  288.             date_time = None
  289.         self.literal = MapCRLF.sub(CRLF, message)
  290.         return self._simple_command(name, mailbox, flags, date_time)
  291.  
  292.     
  293.     def authenticate(self, mechanism, authobject):
  294.         """Authenticate command - requires response processing.
  295.  
  296.         'mechanism' specifies which authentication mechanism is to
  297.         be used - it must appear in <instance>.capabilities in the
  298.         form AUTH=<mechanism>.
  299.  
  300.         'authobject' must be a callable object:
  301.  
  302.                 data = authobject(response)
  303.  
  304.         It will be called to process server continuation responses.
  305.         It should return data that will be encoded and sent to server.
  306.         It should return None if the client abort response '*' should
  307.         be sent instead.
  308.         """
  309.         mech = mechanism.upper()
  310.         self.literal = _Authenticator(authobject).process
  311.         (typ, dat) = self._simple_command('AUTHENTICATE', mech)
  312.         if typ != 'OK':
  313.             raise self.error(dat[-1])
  314.         
  315.         self.state = 'AUTH'
  316.         return (typ, dat)
  317.  
  318.     
  319.     def check(self):
  320.         '''Checkpoint mailbox on server.
  321.  
  322.         (typ, [data]) = <instance>.check()
  323.         '''
  324.         return self._simple_command('CHECK')
  325.  
  326.     
  327.     def close(self):
  328.         """Close currently selected mailbox.
  329.  
  330.         Deleted messages are removed from writable mailbox.
  331.         This is the recommended command before 'LOGOUT'.
  332.  
  333.         (typ, [data]) = <instance>.close()
  334.         """
  335.         
  336.         try:
  337.             (typ, dat) = self._simple_command('CLOSE')
  338.         finally:
  339.             self.state = 'AUTH'
  340.  
  341.         return (typ, dat)
  342.  
  343.     
  344.     def copy(self, message_set, new_mailbox):
  345.         """Copy 'message_set' messages onto end of 'new_mailbox'.
  346.  
  347.         (typ, [data]) = <instance>.copy(message_set, new_mailbox)
  348.         """
  349.         return self._simple_command('COPY', message_set, new_mailbox)
  350.  
  351.     
  352.     def create(self, mailbox):
  353.         '''Create new mailbox.
  354.  
  355.         (typ, [data]) = <instance>.create(mailbox)
  356.         '''
  357.         return self._simple_command('CREATE', mailbox)
  358.  
  359.     
  360.     def delete(self, mailbox):
  361.         '''Delete old mailbox.
  362.  
  363.         (typ, [data]) = <instance>.delete(mailbox)
  364.         '''
  365.         return self._simple_command('DELETE', mailbox)
  366.  
  367.     
  368.     def deleteacl(self, mailbox, who):
  369.         '''Delete the ACLs (remove any rights) set for who on mailbox.
  370.  
  371.         (typ, [data]) = <instance>.deleteacl(mailbox, who)
  372.         '''
  373.         return self._simple_command('DELETEACL', mailbox, who)
  374.  
  375.     
  376.     def expunge(self):
  377.         """Permanently remove deleted items from selected mailbox.
  378.  
  379.         Generates 'EXPUNGE' response for each deleted message.
  380.  
  381.         (typ, [data]) = <instance>.expunge()
  382.  
  383.         'data' is list of 'EXPUNGE'd message numbers in order received.
  384.         """
  385.         name = 'EXPUNGE'
  386.         (typ, dat) = self._simple_command(name)
  387.         return self._untagged_response(typ, dat, name)
  388.  
  389.     
  390.     def fetch(self, message_set, message_parts):
  391.         '''Fetch (parts of) messages.
  392.  
  393.         (typ, [data, ...]) = <instance>.fetch(message_set, message_parts)
  394.  
  395.         \'message_parts\' should be a string of selected parts
  396.         enclosed in parentheses, eg: "(UID BODY[TEXT])".
  397.  
  398.         \'data\' are tuples of message part envelope and data.
  399.         '''
  400.         name = 'FETCH'
  401.         (typ, dat) = self._simple_command(name, message_set, message_parts)
  402.         return self._untagged_response(typ, dat, name)
  403.  
  404.     
  405.     def getacl(self, mailbox):
  406.         '''Get the ACLs for a mailbox.
  407.  
  408.         (typ, [data]) = <instance>.getacl(mailbox)
  409.         '''
  410.         (typ, dat) = self._simple_command('GETACL', mailbox)
  411.         return self._untagged_response(typ, dat, 'ACL')
  412.  
  413.     
  414.     def getquota(self, root):
  415.         """Get the quota root's resource usage and limits.
  416.  
  417.         Part of the IMAP4 QUOTA extension defined in rfc2087.
  418.  
  419.         (typ, [data]) = <instance>.getquota(root)
  420.         """
  421.         (typ, dat) = self._simple_command('GETQUOTA', root)
  422.         return self._untagged_response(typ, dat, 'QUOTA')
  423.  
  424.     
  425.     def getquotaroot(self, mailbox):
  426.         '''Get the list of quota roots for the named mailbox.
  427.  
  428.         (typ, [[QUOTAROOT responses...], [QUOTA responses]]) = <instance>.getquotaroot(mailbox)
  429.         '''
  430.         (typ, dat) = self._simple_command('GETQUOTAROOT', mailbox)
  431.         (typ, quota) = self._untagged_response(typ, dat, 'QUOTA')
  432.         (typ, quotaroot) = self._untagged_response(typ, dat, 'QUOTAROOT')
  433.         return (typ, [
  434.             quotaroot,
  435.             quota])
  436.  
  437.     
  438.     def list(self, directory = '""', pattern = '*'):
  439.         '''List mailbox names in directory matching pattern.
  440.  
  441.         (typ, [data]) = <instance>.list(directory=\'""\', pattern=\'*\')
  442.  
  443.         \'data\' is list of LIST responses.
  444.         '''
  445.         name = 'LIST'
  446.         (typ, dat) = self._simple_command(name, directory, pattern)
  447.         return self._untagged_response(typ, dat, name)
  448.  
  449.     
  450.     def login(self, user, password):
  451.         """Identify client using plaintext password.
  452.  
  453.         (typ, [data]) = <instance>.login(user, password)
  454.  
  455.         NB: 'password' will be quoted.
  456.         """
  457.         (typ, dat) = self._simple_command('LOGIN', user, self._quote(password))
  458.         if typ != 'OK':
  459.             raise self.error(dat[-1])
  460.         
  461.         self.state = 'AUTH'
  462.         return (typ, dat)
  463.  
  464.     
  465.     def login_cram_md5(self, user, password):
  466.         ''' Force use of CRAM-MD5 authentication.
  467.  
  468.         (typ, [data]) = <instance>.login_cram_md5(user, password)
  469.         '''
  470.         self.user = user
  471.         self.password = password
  472.         return self.authenticate('CRAM-MD5', self._CRAM_MD5_AUTH)
  473.  
  474.     
  475.     def _CRAM_MD5_AUTH(self, challenge):
  476.         ''' Authobject to use with CRAM-MD5 authentication. '''
  477.         import hmac as hmac
  478.         return self.user + ' ' + hmac.HMAC(self.password, challenge).hexdigest()
  479.  
  480.     
  481.     def logout(self):
  482.         """Shutdown connection to server.
  483.  
  484.         (typ, [data]) = <instance>.logout()
  485.  
  486.         Returns server 'BYE' response.
  487.         """
  488.         self.state = 'LOGOUT'
  489.         
  490.         try:
  491.             (typ, dat) = self._simple_command('LOGOUT')
  492.         except:
  493.             typ = 'NO'
  494.             dat = [
  495.                 '%s: %s' % sys.exc_info()[:2]]
  496.  
  497.         self.shutdown()
  498.         if 'BYE' in self.untagged_responses:
  499.             return ('BYE', self.untagged_responses['BYE'])
  500.         
  501.         return (typ, dat)
  502.  
  503.     
  504.     def lsub(self, directory = '""', pattern = '*'):
  505.         '''List \'subscribed\' mailbox names in directory matching pattern.
  506.  
  507.         (typ, [data, ...]) = <instance>.lsub(directory=\'""\', pattern=\'*\')
  508.  
  509.         \'data\' are tuples of message part envelope and data.
  510.         '''
  511.         name = 'LSUB'
  512.         (typ, dat) = self._simple_command(name, directory, pattern)
  513.         return self._untagged_response(typ, dat, name)
  514.  
  515.     
  516.     def myrights(self, mailbox):
  517.         '''Show my ACLs for a mailbox (i.e. the rights that I have on mailbox).
  518.  
  519.         (typ, [data]) = <instance>.myrights(mailbox)
  520.         '''
  521.         (typ, dat) = self._simple_command('MYRIGHTS', mailbox)
  522.         return self._untagged_response(typ, dat, 'MYRIGHTS')
  523.  
  524.     
  525.     def namespace(self):
  526.         ''' Returns IMAP namespaces ala rfc2342
  527.  
  528.         (typ, [data, ...]) = <instance>.namespace()
  529.         '''
  530.         name = 'NAMESPACE'
  531.         (typ, dat) = self._simple_command(name)
  532.         return self._untagged_response(typ, dat, name)
  533.  
  534.     
  535.     def noop(self):
  536.         '''Send NOOP command.
  537.  
  538.         (typ, [data]) = <instance>.noop()
  539.         '''
  540.         if __debug__:
  541.             if self.debug >= 3:
  542.                 self._dump_ur(self.untagged_responses)
  543.             
  544.         
  545.         return self._simple_command('NOOP')
  546.  
  547.     
  548.     def partial(self, message_num, message_part, start, length):
  549.         """Fetch truncated part of a message.
  550.  
  551.         (typ, [data, ...]) = <instance>.partial(message_num, message_part, start, length)
  552.  
  553.         'data' is tuple of message part envelope and data.
  554.         """
  555.         name = 'PARTIAL'
  556.         (typ, dat) = self._simple_command(name, message_num, message_part, start, length)
  557.         return self._untagged_response(typ, dat, 'FETCH')
  558.  
  559.     
  560.     def proxyauth(self, user):
  561.         '''Assume authentication as "user".
  562.  
  563.         Allows an authorised administrator to proxy into any user\'s
  564.         mailbox.
  565.  
  566.         (typ, [data]) = <instance>.proxyauth(user)
  567.         '''
  568.         name = 'PROXYAUTH'
  569.         return self._simple_command('PROXYAUTH', user)
  570.  
  571.     
  572.     def rename(self, oldmailbox, newmailbox):
  573.         '''Rename old mailbox name to new.
  574.  
  575.         (typ, [data]) = <instance>.rename(oldmailbox, newmailbox)
  576.         '''
  577.         return self._simple_command('RENAME', oldmailbox, newmailbox)
  578.  
  579.     
  580.     def search(self, charset, *criteria):
  581.         """Search mailbox for matching messages.
  582.  
  583.         (typ, [data]) = <instance>.search(charset, criterion, ...)
  584.  
  585.         'data' is space separated list of matching message numbers.
  586.         """
  587.         name = 'SEARCH'
  588.         if charset:
  589.             (typ, dat) = self._simple_command(name, 'CHARSET', charset, *criteria)
  590.         else:
  591.             (typ, dat) = self._simple_command(name, *criteria)
  592.         return self._untagged_response(typ, dat, name)
  593.  
  594.     
  595.     def select(self, mailbox = 'INBOX', readonly = None):
  596.         """Select a mailbox.
  597.  
  598.         Flush all untagged responses.
  599.  
  600.         (typ, [data]) = <instance>.select(mailbox='INBOX', readonly=None)
  601.  
  602.         'data' is count of messages in mailbox ('EXISTS' response).
  603.  
  604.         Mandated responses are ('FLAGS', 'EXISTS', 'RECENT', 'UIDVALIDITY'), so
  605.         other responses should be obtained via <instance>.response('FLAGS') etc.
  606.         """
  607.         self.untagged_responses = { }
  608.         self.is_readonly = readonly
  609.         if readonly is not None:
  610.             name = 'EXAMINE'
  611.         else:
  612.             name = 'SELECT'
  613.         (typ, dat) = self._simple_command(name, mailbox)
  614.         if typ != 'OK':
  615.             self.state = 'AUTH'
  616.             return (typ, dat)
  617.         
  618.         self.state = 'SELECTED'
  619.         if 'READ-ONLY' in self.untagged_responses and not readonly:
  620.             if __debug__:
  621.                 if self.debug >= 1:
  622.                     self._dump_ur(self.untagged_responses)
  623.                 
  624.             
  625.             raise self.readonly('%s is not writable' % mailbox)
  626.         
  627.         return (typ, self.untagged_responses.get('EXISTS', [
  628.             None]))
  629.  
  630.     
  631.     def setacl(self, mailbox, who, what):
  632.         '''Set a mailbox acl.
  633.  
  634.         (typ, [data]) = <instance>.setacl(mailbox, who, what)
  635.         '''
  636.         return self._simple_command('SETACL', mailbox, who, what)
  637.  
  638.     
  639.     def setquota(self, root, limits):
  640.         """Set the quota root's resource limits.
  641.  
  642.         (typ, [data]) = <instance>.setquota(root, limits)
  643.         """
  644.         (typ, dat) = self._simple_command('SETQUOTA', root, limits)
  645.         return self._untagged_response(typ, dat, 'QUOTA')
  646.  
  647.     
  648.     def sort(self, sort_criteria, charset, *search_criteria):
  649.         '''IMAP4rev1 extension SORT command.
  650.  
  651.         (typ, [data]) = <instance>.sort(sort_criteria, charset, search_criteria, ...)
  652.         '''
  653.         name = 'SORT'
  654.         if (sort_criteria[0], sort_criteria[-1]) != ('(', ')'):
  655.             sort_criteria = '(%s)' % sort_criteria
  656.         
  657.         (typ, dat) = self._simple_command(name, sort_criteria, charset, *search_criteria)
  658.         return self._untagged_response(typ, dat, name)
  659.  
  660.     
  661.     def status(self, mailbox, names):
  662.         '''Request named status conditions for mailbox.
  663.  
  664.         (typ, [data]) = <instance>.status(mailbox, names)
  665.         '''
  666.         name = 'STATUS'
  667.         (typ, dat) = self._simple_command(name, mailbox, names)
  668.         return self._untagged_response(typ, dat, name)
  669.  
  670.     
  671.     def store(self, message_set, command, flags):
  672.         '''Alters flag dispositions for messages in mailbox.
  673.  
  674.         (typ, [data]) = <instance>.store(message_set, command, flags)
  675.         '''
  676.         if (flags[0], flags[-1]) != ('(', ')'):
  677.             flags = '(%s)' % flags
  678.         
  679.         (typ, dat) = self._simple_command('STORE', message_set, command, flags)
  680.         return self._untagged_response(typ, dat, 'FETCH')
  681.  
  682.     
  683.     def subscribe(self, mailbox):
  684.         '''Subscribe to new mailbox.
  685.  
  686.         (typ, [data]) = <instance>.subscribe(mailbox)
  687.         '''
  688.         return self._simple_command('SUBSCRIBE', mailbox)
  689.  
  690.     
  691.     def thread(self, threading_algorithm, charset, *search_criteria):
  692.         '''IMAPrev1 extension THREAD command.
  693.  
  694.         (type, [data]) = <instance>.thread(threading_alogrithm, charset, search_criteria, ...)
  695.         '''
  696.         name = 'THREAD'
  697.         (typ, dat) = self._simple_command(name, threading_algorithm, charset, *search_criteria)
  698.         return self._untagged_response(typ, dat, name)
  699.  
  700.     
  701.     def uid(self, command, *args):
  702.         '''Execute "command arg ..." with messages identified by UID,
  703.                 rather than message number.
  704.  
  705.         (typ, [data]) = <instance>.uid(command, arg1, arg2, ...)
  706.  
  707.         Returns response appropriate to \'command\'.
  708.         '''
  709.         command = command.upper()
  710.         if command not in Commands:
  711.             raise self.error('Unknown IMAP4 UID command: %s' % command)
  712.         
  713.         if self.state not in Commands[command]:
  714.             raise self.error('command %s illegal in state %s' % (command, self.state))
  715.         
  716.         name = 'UID'
  717.         (typ, dat) = self._simple_command(name, command, *args)
  718.         if command in ('SEARCH', 'SORT'):
  719.             name = command
  720.         else:
  721.             name = 'FETCH'
  722.         return self._untagged_response(typ, dat, name)
  723.  
  724.     
  725.     def unsubscribe(self, mailbox):
  726.         '''Unsubscribe from old mailbox.
  727.  
  728.         (typ, [data]) = <instance>.unsubscribe(mailbox)
  729.         '''
  730.         return self._simple_command('UNSUBSCRIBE', mailbox)
  731.  
  732.     
  733.     def xatom(self, name, *args):
  734.         """Allow simple extension commands
  735.                 notified by server in CAPABILITY response.
  736.  
  737.         Assumes command is legal in current state.
  738.  
  739.         (typ, [data]) = <instance>.xatom(name, arg, ...)
  740.  
  741.         Returns response appropriate to extension command `name'.
  742.         """
  743.         name = name.upper()
  744.         if name not in Commands:
  745.             Commands[name] = (self.state,)
  746.         
  747.         return self._simple_command(name, *args)
  748.  
  749.     
  750.     def _append_untagged(self, typ, dat):
  751.         if dat is None:
  752.             dat = ''
  753.         
  754.         ur = self.untagged_responses
  755.         if __debug__:
  756.             if self.debug >= 5:
  757.                 self._mesg('untagged_responses[%s] %s += ["%s"]' % (typ, len(ur.get(typ, '')), dat))
  758.             
  759.         
  760.         if typ in ur:
  761.             ur[typ].append(dat)
  762.         else:
  763.             ur[typ] = [
  764.                 dat]
  765.  
  766.     
  767.     def _check_bye(self):
  768.         bye = self.untagged_responses.get('BYE')
  769.         if bye:
  770.             raise self.abort(bye[-1])
  771.         
  772.  
  773.     
  774.     def _command(self, name, *args):
  775.         if self.state not in Commands[name]:
  776.             self.literal = None
  777.             raise self.error('command %s illegal in state %s' % (name, self.state))
  778.         
  779.         for typ in ('OK', 'NO', 'BAD'):
  780.             if typ in self.untagged_responses:
  781.                 del self.untagged_responses[typ]
  782.                 continue
  783.         
  784.         if 'READ-ONLY' in self.untagged_responses and not (self.is_readonly):
  785.             raise self.readonly('mailbox status changed to READ-ONLY')
  786.         
  787.         tag = self._new_tag()
  788.         data = '%s %s' % (tag, name)
  789.         for arg in args:
  790.             if arg is None:
  791.                 continue
  792.             
  793.             data = '%s %s' % (data, self._checkquote(arg))
  794.         
  795.         literal = self.literal
  796.         if literal is not None:
  797.             self.literal = None
  798.             if type(literal) is type(self._command):
  799.                 literator = literal
  800.             else:
  801.                 literator = None
  802.                 data = '%s {%s}' % (data, len(literal))
  803.         
  804.         if __debug__:
  805.             if self.debug >= 4:
  806.                 self._mesg('> %s' % data)
  807.             else:
  808.                 self._log('> %s' % data)
  809.         
  810.         
  811.         try:
  812.             self.send('%s%s' % (data, CRLF))
  813.         except (socket.error, OSError):
  814.             val = None
  815.             raise self.abort('socket error: %s' % val)
  816.  
  817.         if literal is None:
  818.             return tag
  819.         
  820.         while None:
  821.             while self._get_response():
  822.                 if self.tagged_commands[tag]:
  823.                     return tag
  824.                     continue
  825.             if literator:
  826.                 literal = literator(self.continuation_response)
  827.             
  828.             if __debug__:
  829.                 if self.debug >= 4:
  830.                     self._mesg('write literal size %s' % len(literal))
  831.                 
  832.             
  833.             
  834.             try:
  835.                 self.send(literal)
  836.                 self.send(CRLF)
  837.             except (socket.error, OSError):
  838.                 val = None
  839.                 raise self.abort('socket error: %s' % val)
  840.  
  841.             if not literator:
  842.                 break
  843.                 continue
  844.         return tag
  845.  
  846.     
  847.     def _command_complete(self, name, tag):
  848.         self._check_bye()
  849.         
  850.         try:
  851.             (typ, data) = self._get_tagged_response(tag)
  852.         except self.abort:
  853.             val = None
  854.             raise self.abort('command: %s => %s' % (name, val))
  855.         except self.error:
  856.             val = None
  857.             raise self.error('command: %s => %s' % (name, val))
  858.  
  859.         self._check_bye()
  860.         if typ == 'BAD':
  861.             raise self.error('%s command error: %s %s' % (name, typ, data))
  862.         
  863.         return (typ, data)
  864.  
  865.     
  866.     def _get_response(self):
  867.         resp = self._get_line()
  868.         if self._match(self.tagre, resp):
  869.             tag = self.mo.group('tag')
  870.             if tag not in self.tagged_commands:
  871.                 raise self.abort('unexpected tagged response: %s' % resp)
  872.             
  873.             typ = self.mo.group('type')
  874.             dat = self.mo.group('data')
  875.             self.tagged_commands[tag] = (typ, [
  876.                 dat])
  877.         else:
  878.             dat2 = None
  879.             if not self._match(Untagged_response, resp):
  880.                 if self._match(Untagged_status, resp):
  881.                     dat2 = self.mo.group('data2')
  882.                 
  883.             
  884.             if self.mo is None:
  885.                 if self._match(Continuation, resp):
  886.                     self.continuation_response = self.mo.group('data')
  887.                     return None
  888.                 
  889.                 raise self.abort("unexpected response: '%s'" % resp)
  890.             
  891.             typ = self.mo.group('type')
  892.             dat = self.mo.group('data')
  893.             if dat is None:
  894.                 dat = ''
  895.             
  896.             if dat2:
  897.                 dat = dat + ' ' + dat2
  898.             
  899.             while self._match(Literal, dat):
  900.                 size = int(self.mo.group('size'))
  901.                 if __debug__:
  902.                     if self.debug >= 4:
  903.                         self._mesg('read literal size %s' % size)
  904.                     
  905.                 
  906.                 data = self.read(size)
  907.                 self._append_untagged(typ, (dat, data))
  908.                 dat = self._get_line()
  909.             self._append_untagged(typ, dat)
  910.         if typ in ('OK', 'NO', 'BAD') and self._match(Response_code, dat):
  911.             self._append_untagged(self.mo.group('type'), self.mo.group('data'))
  912.         
  913.         if __debug__:
  914.             if self.debug >= 1 and typ in ('NO', 'BAD', 'BYE'):
  915.                 self._mesg('%s response: %s' % (typ, dat))
  916.             
  917.         
  918.         return resp
  919.  
  920.     
  921.     def _get_tagged_response(self, tag):
  922.         while None:
  923.             result = self.tagged_commands[tag]
  924.             if result is not None:
  925.                 del self.tagged_commands[tag]
  926.                 return result
  927.             
  928.             
  929.             try:
  930.                 self._get_response()
  931.             continue
  932.             except self.abort:
  933.                 val = None
  934.                 if __debug__:
  935.                     if self.debug >= 1:
  936.                         self.print_log()
  937.                     
  938.                 
  939.                 raise 
  940.                 continue
  941.             
  942.  
  943.  
  944.     
  945.     def _get_line(self):
  946.         line = self.readline()
  947.         if not line:
  948.             raise self.abort('socket error: EOF')
  949.         
  950.         line = line[:-2]
  951.         if __debug__:
  952.             if self.debug >= 4:
  953.                 self._mesg('< %s' % line)
  954.             else:
  955.                 self._log('< %s' % line)
  956.         
  957.         return line
  958.  
  959.     
  960.     def _match(self, cre, s):
  961.         self.mo = cre.match(s)
  962.         if __debug__:
  963.             if self.mo is not None and self.debug >= 5:
  964.                 self._mesg("\tmatched r'%s' => %r" % (cre.pattern, self.mo.groups()))
  965.             
  966.         
  967.         return self.mo is not None
  968.  
  969.     
  970.     def _new_tag(self):
  971.         tag = '%s%s' % (self.tagpre, self.tagnum)
  972.         self.tagnum = self.tagnum + 1
  973.         self.tagged_commands[tag] = None
  974.         return tag
  975.  
  976.     
  977.     def _checkquote(self, arg):
  978.         if type(arg) is not type(''):
  979.             return arg
  980.         
  981.         if len(arg) >= 2 and (arg[0], arg[-1]) in (('(', ')'), ('"', '"')):
  982.             return arg
  983.         
  984.         if arg and self.mustquote.search(arg) is None:
  985.             return arg
  986.         
  987.         return self._quote(arg)
  988.  
  989.     
  990.     def _quote(self, arg):
  991.         arg = arg.replace('\\', '\\\\')
  992.         arg = arg.replace('"', '\\"')
  993.         return '"%s"' % arg
  994.  
  995.     
  996.     def _simple_command(self, name, *args):
  997.         return self._command_complete(name, self._command(name, *args))
  998.  
  999.     
  1000.     def _untagged_response(self, typ, dat, name):
  1001.         if typ == 'NO':
  1002.             return (typ, dat)
  1003.         
  1004.         if name not in self.untagged_responses:
  1005.             return (typ, [
  1006.                 None])
  1007.         
  1008.         data = self.untagged_responses.pop(name)
  1009.         if __debug__:
  1010.             if self.debug >= 5:
  1011.                 self._mesg('untagged_responses[%s] => %s' % (name, data))
  1012.             
  1013.         
  1014.         return (typ, data)
  1015.  
  1016.     if __debug__:
  1017.         
  1018.         def _mesg(self, s, secs = None):
  1019.             if secs is None:
  1020.                 secs = time.time()
  1021.             
  1022.             tm = time.strftime('%M:%S', time.localtime(secs))
  1023.             sys.stderr.write('  %s.%02d %s\n' % (tm, secs * 100 % 100, s))
  1024.             sys.stderr.flush()
  1025.  
  1026.         
  1027.         def _dump_ur(self, dict):
  1028.             l = dict.items()
  1029.             if not l:
  1030.                 return None
  1031.             
  1032.             t = '\n\t\t'
  1033.             l = map((lambda x: if not x[1][0] or '" "'.join(x[1]):
  1034. pass'%s: "%s"' % (x[0], '')), l)
  1035.             self._mesg('untagged responses dump:%s%s' % (t, t.join(l)))
  1036.  
  1037.         
  1038.         def _log(self, line):
  1039.             self._cmd_log[self._cmd_log_idx] = (line, time.time())
  1040.             self._cmd_log_idx += 1
  1041.             if self._cmd_log_idx >= self._cmd_log_len:
  1042.                 self._cmd_log_idx = 0
  1043.             
  1044.  
  1045.         
  1046.         def print_log(self):
  1047.             self._mesg('last %d IMAP4 interactions:' % len(self._cmd_log))
  1048.             i = self._cmd_log_idx
  1049.             n = self._cmd_log_len
  1050.             while n:
  1051.                 
  1052.                 try:
  1053.                     self._mesg(*self._cmd_log[i])
  1054.                 except:
  1055.                     pass
  1056.  
  1057.                 i += 1
  1058.                 if i >= self._cmd_log_len:
  1059.                     i = 0
  1060.                 
  1061.                 n -= 1
  1062.  
  1063.     
  1064.  
  1065.  
  1066. class IMAP4_SSL(IMAP4):
  1067.     """IMAP4 client class over SSL connection
  1068.  
  1069.     Instantiate with: IMAP4_SSL([host[, port[, keyfile[, certfile]]]])
  1070.  
  1071.             host - host's name (default: localhost);
  1072.             port - port number (default: standard IMAP4 SSL port).
  1073.             keyfile - PEM formatted file that contains your private key (default: None);
  1074.             certfile - PEM formatted certificate chain file (default: None);
  1075.  
  1076.     for more documentation see the docstring of the parent class IMAP4.
  1077.     """
  1078.     
  1079.     def __init__(self, host = '', port = IMAP4_SSL_PORT, keyfile = None, certfile = None):
  1080.         self.keyfile = keyfile
  1081.         self.certfile = certfile
  1082.         IMAP4.__init__(self, host, port)
  1083.  
  1084.     
  1085.     def open(self, host = '', port = IMAP4_SSL_PORT):
  1086.         '''Setup connection to remote server on "host:port".
  1087.             (default: localhost:standard IMAP4 SSL port).
  1088.         This connection will be used by the routines:
  1089.             read, readline, send, shutdown.
  1090.         '''
  1091.         self.host = host
  1092.         self.port = port
  1093.         self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  1094.         self.sock.connect((host, port))
  1095.         self.sslobj = socket.ssl(self.sock, self.keyfile, self.certfile)
  1096.  
  1097.     
  1098.     def read(self, size):
  1099.         """Read 'size' bytes from remote."""
  1100.         chunks = []
  1101.         read = 0
  1102.         while read < size:
  1103.             data = self.sslobj.read(size - read)
  1104.             read += len(data)
  1105.             chunks.append(data)
  1106.         return ''.join(chunks)
  1107.  
  1108.     
  1109.     def readline(self):
  1110.         '''Read line from remote.'''
  1111.         line = []
  1112.         while None:
  1113.             char = self.sslobj.read(1)
  1114.             if char == '\n':
  1115.                 return ''.join(line)
  1116.                 continue
  1117.  
  1118.     
  1119.     def send(self, data):
  1120.         '''Send data to remote.'''
  1121.         bytes = len(data)
  1122.         while bytes > 0:
  1123.             sent = self.sslobj.write(data)
  1124.             if sent == bytes:
  1125.                 break
  1126.             
  1127.             data = data[sent:]
  1128.             bytes = bytes - sent
  1129.  
  1130.     
  1131.     def shutdown(self):
  1132.         '''Close I/O established in "open".'''
  1133.         self.sock.close()
  1134.  
  1135.     
  1136.     def socket(self):
  1137.         '''Return socket instance used to connect to IMAP4 server.
  1138.  
  1139.         socket = <instance>.socket()
  1140.         '''
  1141.         return self.sock
  1142.  
  1143.     
  1144.     def ssl(self):
  1145.         '''Return SSLObject instance used to communicate with the IMAP4 server.
  1146.  
  1147.         ssl = <instance>.socket.ssl()
  1148.         '''
  1149.         return self.sslobj
  1150.  
  1151.  
  1152.  
  1153. class IMAP4_stream(IMAP4):
  1154.     '''IMAP4 client class over a stream
  1155.  
  1156.     Instantiate with: IMAP4_stream(command)
  1157.  
  1158.             where "command" is a string that can be passed to os.popen2()
  1159.  
  1160.     for more documentation see the docstring of the parent class IMAP4.
  1161.     '''
  1162.     
  1163.     def __init__(self, command):
  1164.         self.command = command
  1165.         IMAP4.__init__(self)
  1166.  
  1167.     
  1168.     def open(self, host = None, port = None):
  1169.         '''Setup a stream connection.
  1170.         This connection will be used by the routines:
  1171.             read, readline, send, shutdown.
  1172.         '''
  1173.         self.host = None
  1174.         self.port = None
  1175.         self.sock = None
  1176.         self.file = None
  1177.         (self.writefile, self.readfile) = os.popen2(self.command)
  1178.  
  1179.     
  1180.     def read(self, size):
  1181.         """Read 'size' bytes from remote."""
  1182.         return self.readfile.read(size)
  1183.  
  1184.     
  1185.     def readline(self):
  1186.         '''Read line from remote.'''
  1187.         return self.readfile.readline()
  1188.  
  1189.     
  1190.     def send(self, data):
  1191.         '''Send data to remote.'''
  1192.         self.writefile.write(data)
  1193.         self.writefile.flush()
  1194.  
  1195.     
  1196.     def shutdown(self):
  1197.         '''Close I/O established in "open".'''
  1198.         self.readfile.close()
  1199.         self.writefile.close()
  1200.  
  1201.  
  1202.  
  1203. class _Authenticator:
  1204.     '''Private class to provide en/decoding
  1205.             for base64-based authentication conversation.
  1206.     '''
  1207.     
  1208.     def __init__(self, mechinst):
  1209.         self.mech = mechinst
  1210.  
  1211.     
  1212.     def process(self, data):
  1213.         ret = self.mech(self.decode(data))
  1214.         if ret is None:
  1215.             return '*'
  1216.         
  1217.         return self.encode(ret)
  1218.  
  1219.     
  1220.     def encode(self, inp):
  1221.         oup = ''
  1222.         while inp:
  1223.             if len(inp) > 48:
  1224.                 t = inp[:48]
  1225.                 inp = inp[48:]
  1226.             else:
  1227.                 t = inp
  1228.                 inp = ''
  1229.             e = binascii.b2a_base64(t)
  1230.             if e:
  1231.                 oup = oup + e[:-1]
  1232.                 continue
  1233.         return oup
  1234.  
  1235.     
  1236.     def decode(self, inp):
  1237.         if not inp:
  1238.             return ''
  1239.         
  1240.         return binascii.a2b_base64(inp)
  1241.  
  1242.  
  1243. Mon2num = {
  1244.     'Jan': 1,
  1245.     'Feb': 2,
  1246.     'Mar': 3,
  1247.     'Apr': 4,
  1248.     'May': 5,
  1249.     'Jun': 6,
  1250.     'Jul': 7,
  1251.     'Aug': 8,
  1252.     'Sep': 9,
  1253.     'Oct': 10,
  1254.     'Nov': 11,
  1255.     'Dec': 12 }
  1256.  
  1257. def Internaldate2tuple(resp):
  1258.     '''Convert IMAP4 INTERNALDATE to UT.
  1259.  
  1260.     Returns Python time module tuple.
  1261.     '''
  1262.     mo = InternalDate.match(resp)
  1263.     if not mo:
  1264.         return None
  1265.     
  1266.     mon = Mon2num[mo.group('mon')]
  1267.     zonen = mo.group('zonen')
  1268.     day = int(mo.group('day'))
  1269.     year = int(mo.group('year'))
  1270.     hour = int(mo.group('hour'))
  1271.     min = int(mo.group('min'))
  1272.     sec = int(mo.group('sec'))
  1273.     zoneh = int(mo.group('zoneh'))
  1274.     zonem = int(mo.group('zonem'))
  1275.     zone = (zoneh * 60 + zonem) * 60
  1276.     if zonen == '-':
  1277.         zone = -zone
  1278.     
  1279.     tt = (year, mon, day, hour, min, sec, -1, -1, -1)
  1280.     utc = time.mktime(tt)
  1281.     lt = time.localtime(utc)
  1282.     if time.daylight and lt[-1]:
  1283.         zone = zone + time.altzone
  1284.     else:
  1285.         zone = zone + time.timezone
  1286.     return time.localtime(utc - zone)
  1287.  
  1288.  
  1289. def Int2AP(num):
  1290.     '''Convert integer to A-P string representation.'''
  1291.     val = ''
  1292.     AP = 'ABCDEFGHIJKLMNOP'
  1293.     num = int(abs(num))
  1294.     while num:
  1295.         (num, mod) = divmod(num, 16)
  1296.         val = AP[mod] + val
  1297.     return val
  1298.  
  1299.  
  1300. def ParseFlags(resp):
  1301.     '''Convert IMAP4 flags response to python tuple.'''
  1302.     mo = Flags.match(resp)
  1303.     if not mo:
  1304.         return ()
  1305.     
  1306.     return tuple(mo.group('flags').split())
  1307.  
  1308.  
  1309. def Time2Internaldate(date_time):
  1310.     '''Convert \'date_time\' to IMAP4 INTERNALDATE representation.
  1311.  
  1312.     Return string in form: \'"DD-Mmm-YYYY HH:MM:SS +HHMM"\'
  1313.     '''
  1314.     if isinstance(date_time, (int, float)):
  1315.         tt = time.localtime(date_time)
  1316.     elif isinstance(date_time, (tuple, time.struct_time)):
  1317.         tt = date_time
  1318.     elif isinstance(date_time, str) and (date_time[0], date_time[-1]) == ('"', '"'):
  1319.         return date_time
  1320.     else:
  1321.         raise ValueError('date_time not of a known type')
  1322.     dt = time.strftime('%d-%b-%Y %H:%M:%S', tt)
  1323.     if dt[0] == '0':
  1324.         dt = ' ' + dt[1:]
  1325.     
  1326.     if time.daylight and tt[-1]:
  1327.         zone = -(time.altzone)
  1328.     else:
  1329.         zone = -(time.timezone)
  1330.     return '"' + dt + ' %+03d%02d' % divmod(zone // 60, 60) + '"'
  1331.  
  1332. if __name__ == '__main__':
  1333.     import getopt
  1334.     import getpass
  1335.     
  1336.     try:
  1337.         (optlist, args) = getopt.getopt(sys.argv[1:], 'd:s:')
  1338.     except getopt.error:
  1339.         val = None
  1340.         (optlist, args) = ((), ())
  1341.  
  1342.     stream_command = None
  1343.     for opt, val in optlist:
  1344.         if opt == '-d':
  1345.             Debug = int(val)
  1346.         elif opt == '-s':
  1347.             stream_command = val
  1348.             if not args:
  1349.                 args = (stream_command,)
  1350.             
  1351.         
  1352.     
  1353.     if not args:
  1354.         args = ('',)
  1355.     
  1356.     host = args[0]
  1357.     USER = getpass.getuser()
  1358.     if not host:
  1359.         pass
  1360.     PASSWD = getpass.getpass('IMAP password for %s on %s: ' % (USER, 'localhost'))
  1361.     test_mesg = 'From: %(user)s@localhost%(lf)sSubject: IMAP4 test%(lf)s%(lf)sdata...%(lf)s' % {
  1362.         'user': USER,
  1363.         'lf': '\n' }
  1364.     test_seq1 = (('login', (USER, PASSWD)), ('create', ('/tmp/xxx 1',)), ('rename', ('/tmp/xxx 1', '/tmp/yyy')), ('CREATE', ('/tmp/yyz 2',)), ('append', ('/tmp/yyz 2', None, None, test_mesg)), ('list', ('/tmp', 'yy*')), ('select', ('/tmp/yyz 2',)), ('search', (None, 'SUBJECT', 'test')), ('fetch', ('1', '(FLAGS INTERNALDATE RFC822)')), ('store', ('1', 'FLAGS', '(\\Deleted)')), ('namespace', ()), ('expunge', ()), ('recent', ()), ('close', ()))
  1365.     test_seq2 = (('select', ()), ('response', ('UIDVALIDITY',)), ('uid', ('SEARCH', 'ALL')), ('response', ('EXISTS',)), ('append', (None, None, None, test_mesg)), ('recent', ()), ('logout', ()))
  1366.     
  1367.     def run(cmd, args):
  1368.         M._mesg('%s %s' % (cmd, args))
  1369.         (typ, dat) = getattr(M, cmd)(*args)
  1370.         M._mesg('%s => %s %s' % (cmd, typ, dat))
  1371.         if typ == 'NO':
  1372.             raise dat[0]
  1373.         
  1374.         return dat
  1375.  
  1376.     
  1377.     try:
  1378.         if stream_command:
  1379.             M = IMAP4_stream(stream_command)
  1380.         else:
  1381.             M = IMAP4(host)
  1382.         if M.state == 'AUTH':
  1383.             test_seq1 = test_seq1[1:]
  1384.         
  1385.         M._mesg('PROTOCOL_VERSION = %s' % M.PROTOCOL_VERSION)
  1386.         M._mesg('CAPABILITIES = %r' % (M.capabilities,))
  1387.         for cmd, args in test_seq1:
  1388.             run(cmd, args)
  1389.         
  1390.         for ml in run('list', ('/tmp/', 'yy%')):
  1391.             mo = re.match('.*"([^"]+)"$', ml)
  1392.             if mo:
  1393.                 path = mo.group(1)
  1394.             else:
  1395.                 path = ml.split()[-1]
  1396.             run('delete', (path,))
  1397.         
  1398.         for cmd, args in test_seq2:
  1399.             dat = run(cmd, args)
  1400.             if (cmd, args) != ('uid', ('SEARCH', 'ALL')):
  1401.                 continue
  1402.             
  1403.             uid = dat[-1].split()
  1404.             if not uid:
  1405.                 continue
  1406.             
  1407.             run('uid', ('FETCH', '%s' % uid[-1], '(FLAGS INTERNALDATE RFC822.SIZE RFC822.HEADER RFC822.TEXT)'))
  1408.         
  1409.         print '\nAll tests OK.'
  1410.     except:
  1411.         print '\nTests failed.'
  1412.         if not Debug:
  1413.             print '\nIf you would like to see debugging output,\ntry: %s -d5\n' % sys.argv[0]
  1414.         
  1415.         raise 
  1416.  
  1417.  
  1418.